home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows News 2010 Summer - Disc 1
/
WN_Ete2010_CD1.iso
/
Onglet5
/
Weezo
/
Weezo setup.exe
/
{code_appDir}
/
www
/
themes
/
wallpaperSelection.php
< prev
Wrap
PHP Script
|
2010-05-19
|
1KB
|
33 lines
<?php
/**
* Theme background wallpaper selection
*
* PHP version 5
*
* LICENSE: This source file is subject to version 3.0 of the PHP license
* that is available through the world-wide-web at the following URI:
* http://www.php.net/license/3_0.txt. If you did not receive a copy of
* the PHP License and are unable to obtain it through the web, please
* send a note to license@php.net so we can mail you a copy immediately.
*
* @category NA
* @package NA
* @author Nicolas Bruley / Peer 2 World <contact@weezo.net>
* @copyright 2005-2009 Nicolas Bruley / Peer 2 World
* @license http://www.php.net/license/3_0.txt PHP License 3.0
* @version CVS: $Id:$
* @link http://www.weezo.net
* @since File available since Release 1.0.0
*/
require_once('outputFunctions.php');
require_once('applicationConfigFunctions.php');
// Check access rights
if(!cfUGetVar('administrator')) outDisplayErrorPage(cfCaption('genNoAccess'), cfCaption('genError'), true);
$_ENV['configurationEnvironment']='browser';
// Wallpaper selection form
wallpaperForm(cfActualTheme());
?>